style.module.css 547 B

123456789101112131415161718
  1. .itemWrapper {
  2. @apply flex items-center w-full h-10 rounded-lg hover:bg-gray-50 cursor-pointer;
  3. }
  4. .appInfo {
  5. @apply truncate text-gray-700 text-sm font-normal;
  6. }
  7. .iconWrapper {
  8. @apply relative w-6 h-6 rounded-lg;
  9. }
  10. .statusPoint {
  11. @apply flex justify-center items-center absolute -right-0.5 -bottom-0.5 w-2.5 h-2.5 bg-white rounded;
  12. }
  13. .subTitle {
  14. @apply uppercase text-xs text-gray-500 font-medium px-3 pb-2 pt-4;
  15. }
  16. .emptyIconDiv {
  17. @apply h-7 w-7 bg-gray-50 border border-[#EAECF5] inline-flex justify-center items-center rounded-lg;
  18. }